home *** CD-ROM | disk | FTP | other *** search
- 'NW4XACCT.BAS - Novell Netware 4.X Interface for Visual Basic for Windows
- ' Contains Structure and function definations for Accessing the
- 'accounting features for Server and Accounts
- 'Version 0.5 - Beta 2
- 'Requirements - NONE
-
- Type HOLDS_INFO
- objectID As Long
- amount As Long
- End Type
-
- Type HOLDS_STATUS
- holdsCount As Integer
- holds(16) As HOLDS_INFO
- End Type
-
- Declare Function NWGetAccountStatus Lib "NWCALLS.DLL" (ByVal conn%, ByVal objectType%, ByVal objectName$, balance&, limit&, holds As HOLDS_STATUS) As Integer
- 'installed need to init as String * 1
- Declare Function NWQueryAccountingInstalled Lib "NWCALLS.DLL" (ByVal conn%, ByVal installed$) As Integer
-
- Declare Function NWSubmitAccountCharge Lib "NWCALLS.DLL" (ByVal conn%, ByVal objectType%, ByVal objectName&, ByVal serviceType%, ByVal chargeAmount&, ByVal holdCancelAmount&, ByVal noteType%, ByVal note$) As Integer
- Declare Function NWSubmitAccountHold Lib "NWCALLS.DLL" (ByVal conn%, ByVal objectType%, ByVal objectName$, holdAmount&) As Integer
- Declare Function NWSubmitAccountNote Lib "NWCALLS.DLL" (ByVal conn%, ByVal objectType%, ByVal objectName$, ByVal serviceType%, ByVal noteType%, ByVal note$) As Integer
-
-